home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_2.zip / EXAMPLES.EXE / EXAM105.C < prev    next >
C/C++ Source or Header  |  1991-03-13  |  493b  |  14 lines

  1.   #include "window.h"
  2.   #define REVERSE  CREATE_VIDEO_ATTRIBUTE(white,black)
  3.   main()
  4.   {
  5.     int i;
  6.     WindowInitializeSystem();
  7.     VideoWriteStringRJAttr("This",1,10,REVERSE);
  8.     VideoWriteStringRJAttr("is",2,10,REVERSE);
  9.     VideoWriteStringRJAttr("right",3,10,REVERSE);
  10.     VideoWriteStringRJAttr("justified",4,10,REVERSE);
  11.     VideoWriteStringRJAttr("on ",5,10,REVERSE);
  12.     VideoWriteStringRJAttr("column",6,10,REVERSE);
  13.     VideoWriteStringRJAttr("10",7,10,REVERSE);
  14.   }